home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / lists / mint / l_1599 / 1487 < prev    next >
Encoding:
Internet Message Format  |  1994-08-27  |  941 b 

  1. Date: Fri, 27 May 94 10:21 CDT
  2. From: ekl@sdf.lonestar.org (Evan K. Langlois)
  3. To: mint@atari.archive.umich.edu
  4. Subject: Unblocking Fork
  5.  
  6.  
  7. ========================================================================
  8. >  It would be
  9. > SLOW but it would work.
  10.  
  11.  and to fix the annoying deadlocks thats just enough.  after all most
  12. programs that fork() don't run parent and child in parallel for long...
  13. ========================================================================
  14.  
  15. Hmm .. Could the granularity of a fork'ed process be changed?  So that it
  16. is run less often, but runs longer .. so its CPU time is the same, but 
  17. the system switches tasks to or from a forked process (when it would so
  18. all the memory copying) less often?   It seems like it could be alot of
  19. memory copying, especially if parent and child are the only two tasks
  20. in the run state - you'd be copying memory back n forth more than you
  21. would be executing the program almost :-)
  22.  
  23.